home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue54 / Construc / BobNotes.idl < prev    next >
Encoding:
Text File  |  2000-01-03  |  516 b   |  20 lines

  1. module BobNotes
  2. {
  3.   interface ICorBobNotes;
  4.  
  5.   
  6.   interface ICorBobNotes
  7.   {
  8.     void GetLines(in wstring User, in wstring Password, out wstring Lines);
  9.     void SetLines(in wstring User, in wstring Password, in wstring Lines);
  10.     void Answer(out long Answer);
  11.     void StringAnswer(in long Question, out wstring Answer);
  12.     void StringAnswer2(in wstring Question, out wstring Answer);
  13.   };
  14.   
  15.   interface CorBobNotesFactory
  16.   {
  17.     ICorBobNotes CreateInstance(in string InstanceName);
  18.   };
  19.  
  20. };